home *** CD-ROM | disk | FTP | other *** search
- #ifndef AMIGAMEM_H
- #define AMIGAMEM_H
-
- #include "parms.h"
-
- /*
- These are versions of the standard C memory utilities, except these
- use AllocMem rather than the process' heap.
-
- (If you want to make a shared library, or even a .lib file that
- others (non SAS users) can link to, stay away from the heap
- memory routines.)
-
- *DO NOT* mix memory allocated off the heap with memory allocated
- with these routines!!!
-
- Lee Willis, Oct 1992
- */
-
- #include <exec/types.h>
-
- void* Amalloc __PARMS(( ULONG ));
-
- void* Acalloc __PARMS(( ULONG, ULONG ));
-
- char* Astrdup __PARMS(( const char* ));
-
- void Afree __PARMS(( void* ));
-
-
- void *Arealloc __PARMS(( void *, ULONG ));
-
- #endif